home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / game / role / ldmud-3.2-bin.lha / mud / doc / efun / lambda < prev    next >
Text File  |  2001-04-06  |  535b  |  20 lines

  1. SYNOPSIS
  2.         closure lambda(mixed *arr, mixed)
  3.  
  4. DESCRIPTION
  5.         Constructs a lambda closure, like lambda function in LISP.
  6.         The closure is bound to the creating object, and thus can contain
  7.         references to global variables.
  8.  
  9.         The first argument is an array describing the arguments
  10.         (symbols) passed to the closure upon evaluation by funcall()
  11.         or apply().
  12.  
  13. HISTORY
  14.         Introduced in 3.2@70
  15.  
  16. SEE ALSO
  17.         closures(LPC), unbound_lambda(E), apply(E), funcall(E),
  18.         bind_lambda(E)
  19.  
  20.